Higher education institutions by city id
GET
/api/v1/City/{id}/highereducationinstitutions
This endpoint returns a list of higher education institutions located in the city with the provided id
Parameters
Path Parameters
id*
Typeinteger
RequiredFormat
"int32"Query Parameters
sortBy
It can be sorted by any of the fields that have numerical, string, or date values (for example: Id, name, description, etc.).
Typestring
sortDirection
Possible values: 'asc' or 'desc'.
Typestring
Responses
OK
application/json
JSON
[
{
"id": 0,
"code": "string",
"name": "string",
"legalNature": "string",
"academicCharacter": "string",
"cityId": 0,
"city": "[Circular Reference]",
"address": "string",
"phone": "string",
"isHighQualityAccredited": true,
"website": "string"
}
]